Skip to content

Instantly share code, notes, and snippets.

@karpathy
karpathy / microgpt.py
Last active February 17, 2026 05:59
microgpt
"""
The most atomic way to train and run inference for a GPT in pure, dependency-free Python.
This file is the complete algorithm.
Everything else is just efficiency.
@karpathy
"""
import os # os.path.exists
import math # math.log, math.exp
@grahamhelton
grahamhelton / detect-nodes-proxy.sh
Last active February 17, 2026 05:57
Detection script for nodes/proxy
#!/bin/bash
# Detect all subjects with nodes/proxy permissions
# Colors
NOCOLOR=$(tput sgr0)
RED=$(tput setaf 1)
GREEN=$(tput setaf 2)
YELLOW=$(tput setaf 3)
CYAN=$(tput setaf 6)
DIM=$(tput setaf 8)
# OpenClaw Implementation Prompts
Each prompt below is a self-contained brief you can hand to an AI coding assistant (or use as a project spec) to build that use case from scratch. Adapt the specific services to whatever you already use — the patterns are what matter.
---
## 1) Personal CRM Intelligence
```
Build me a personal CRM system that automatically tracks everyone I interact with, with smart filtering so it only adds real people — not newsletters, bots, or cold outreach.
@nxrighthere
nxrighthere / Unreal-AgX-Tonemapper.usf
Last active February 17, 2026 05:56
AgX tonemapping for Unreal Engine 5
// See image comparison https://imgur.com/a/9L2P7GJ
// Read details https://iolite-engine.com/blog_posts/minimal_agx_implementation
// Usage:
// 1. Open "Project Settings" and change "Working Color Space" to "sRGB / Rec709"
// 2. Open `Engine\Shaders\Private\PostProcessTonemap.usf` file
// 3. Find `half3 OutDeviceColor = ColorLookupTable(FinalLinearColor);` line
// 4. Replace it with `half3 OutDeviceColor = ApplyAgX(FinalLinearColor);` line
// 5. Find `half3 ColorLookupTable( half3 LinearColor )` function
// 6. After the scope of the function, add the code below and run `RecompileShaders Changed` from console
@Phill-Economy
Phill-Economy / WeChat_Popolnenie_2026.md
Last active February 17, 2026 05:51
Пополнение WeChat (Вичат) из России: Актуальные способы 2026

Пополнение WeChat (Вичат) из России: Актуальные рабочие способы февраль 2026

wechat

Актуально: Февраль 2026

Если у вас запланирована поездка в Китай, перед вами встает вопрос: как пополнять WeChat? В этой стране наличные принимают неохотно, а карты работают не везде. В отличие от Alipay, этот мессенджер строже к иностранцам.

В этой статье мы разберем, как внести деньги на счет. Мы проверим, работает ли Сбербанк, стоит ли использовать приложение Nihao и как гарантированно сделать пополнение через сервис Dasset. Вы узнаете, какой способ оплаты может быть самым надежным для Китая.

@ymeng979
ymeng979 / Movies.sql
Last active February 17, 2026 05:44
CS50 Pset7 Movies
--1.sql
SELECT title FROM movies WHERE year = 2008;
--2.sql
SELECT birth FROM people WHERE name = "Emma Stone";
--3.sql
SELECT title FROM movies WHERE year >= 2018 ORDER BY title;